home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / c-lang / strmc105.lha / StormC-Demo / INCLUDE / clib / keymap_protos.h < prev    next >
C/C++ Source or Header  |  1996-01-02  |  940b  |  44 lines

  1. #ifndef  CLIB_KEYMAP_PROTOS_H
  2. #define  CLIB_KEYMAP_PROTOS_H
  3.  
  4. /*
  5. **    $VER: keymap_protos.h 36.4 (19.7.90)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  DEVICES_INPUTEVENT_H
  15. #include <devices/inputevent.h>
  16. #endif
  17. #ifndef  DEVICES_KEYMAP_H
  18. #include <devices/keymap.h>
  19. #endif
  20.  
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24.  
  25. /*--- functions in V36 or higher (Release 2.0) ---*/
  26. void SetKeyMapDefault( struct KeyMap *keyMap );
  27. struct KeyMap *AskKeyMapDefault( void );
  28. WORD MapRawKey( struct InputEvent *event, STRPTR buffer, long length,
  29.     struct KeyMap *keyMap );
  30. LONG MapANSI( STRPTR string, long count, STRPTR buffer, long length,
  31.     struct KeyMap *keyMap );
  32.  
  33. #ifdef __cplusplus
  34. }
  35. #endif
  36.  
  37. #ifdef STORMPRAGMAS
  38. #ifndef _INCLUDE_PRAGMA_KEYMAP_LIB_H
  39. #include <pragma/keymap_lib.h>
  40. #endif
  41. #endif
  42.  
  43. #endif     /* CLIB_KEYMAP_PROTOS_H */
  44.